home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strlen.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  1KB  |  61 lines

  1. /* 
  2.  * strlen.c --
  3.  *
  4.  *    Source code for the "strlen" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strlen.c,v 1.4 89/03/22 16:07:00 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strlen --
  26.  *
  27.  *    Count the number of characters in a string.
  28.  *
  29.  * Results:
  30.  *    The return value is the number of characters in the
  31.  *    string, not including the terminating zero byte.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. strlen(string)
  41.     char *string;        /* String whose length is wanted. */
  42. {
  43.     register char *p = string;
  44.  
  45.     while (1) {
  46.     if (p[0] == 0) {
  47.         return p - string;
  48.     }
  49.     if (p[1] == 0) {
  50.         return p + 1 - string;
  51.     }
  52.     if (p[2] == 0) {
  53.         return p + 2 - string;
  54.     }
  55.     if (p[3] == 0) {
  56.         return p + 3 - string;
  57.     }
  58.     p += 4;
  59.     }
  60. }
  61.